-
Notifications
You must be signed in to change notification settings - Fork 46
Clean up OverallArchitecture, Fuzzing and Logging docs #1873
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up OverallArchitecture, Fuzzing and Logging docs #1873
Conversation
docs/Fuzzing Platform.md
Outdated
Say, in most of the programming languages, any integer may be represented as a bit array, and the fuzzer can construct and | ||
modify bit arrays. So, in the general case, the boundary values for the integer are these bit arrays: | ||
|
||
* [0, 0, 0, ..., 0] — null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we change the null
to zero
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! Fixed.
docs/Fuzzing Platform.md
Outdated
* [0, 1, 1, ..., 1] - maximum value / 2 + 1 | ||
* [0, 0, ..., 0, 1] - plus 1 | ||
* [1, 1, 1, ..., 1] - maximum value | ||
* [0, 0, 0, ..., 0] — null (minimum value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we change the null
to zero
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Description
How to test
The PR introduces no code changes.
Manual scenario: the text itself has been previewed in the IntelliJ IDEA viewer.
Self-check list